958f0eb9434a40305cc0563df7fc2cd61ff0c176,hazelcast/src/test/java/com/hazelcast/map/impl/MapConfigValidatorTest.java,MapConfigValidatorTest,test_checkNotNative_NATIVE,#,37

Before Change


     */
    @Test(expected = IllegalArgumentException.class)
    public void test_checkNotNative_NATIVE() {
        checkNotNative(InMemoryFormat.NATIVE);
    }

    @Test

After Change


     */
    @Test(expected = IllegalArgumentException.class)
    public void test_checkMapConfig_NATIVE() {
        checkMapConfig(getMapConfig(InMemoryFormat.NATIVE));
    }

    private MapConfig getMapConfig(InMemoryFormat inMemoryFormat) {